home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / libs / ttrender.lha / ttrender-3.1 / Examples / makefile next >
Makefile  |  2002-05-28  |  186b  |  10 lines

  1. test: test.o startup.o
  2.     gcc -o test -nostartfiles -noixemul -msmall-code -fbaserel startup.o test.o
  3.  
  4. test.o: test.c
  5.     gcc $(CF) $<
  6.  
  7. startup.o: startup.c
  8.     gcc $(CF) -fwritable-strings $<
  9.  
  10.